home *** CD-ROM | disk | FTP | other *** search
/ PCMania 73 / PCMania CD73_1.iso / pcmania / render73 / Foro / NACHO / COMIENZO / COMIENZO.INC next >
Text File  |  1998-04-15  |  2KB  |  105 lines

  1. #declare Chrome_Textur1 = texture {
  2.    pigment {
  3.      color rgb<0.659, 0.659, 0.659>
  4.    }
  5.    finish {
  6.      diffuse 0.700
  7.      ambient 0.300
  8.      specular 0.700
  9.      roughness 0.1000
  10.      brilliance 1.000
  11.    }
  12.  
  13. }
  14.  
  15. #declare otra_vez_blanco = texture {
  16.    pigment {
  17.      checker
  18.        color rgb<0.000, 0.000, 0.000>
  19.        color rgb<1.000, 1.000, 1.000>
  20.        scale     <0.7500, 0.7500, 0.7500>
  21.    }
  22.    finish {
  23.      diffuse 0.500
  24.      ambient 0.300
  25.      phong 1.000
  26.      phong_size 90.200
  27.      specular 0.250
  28.      roughness 0.0100
  29.    }
  30.  
  31. }
  32.  
  33. #declare suelo = texture {
  34.    pigment {
  35.      color rgb<0.000, 1.000, 0.000>
  36.    }
  37.    normal {
  38.      ripples 7.3000
  39.      turbulence 0.500
  40.      omega 3.000
  41.      lambda 0.700
  42.    }
  43.    finish {
  44.      diffuse 0.400
  45.      ambient 0.330
  46.      specular 0.100
  47.      roughness 0.1000
  48.    }
  49.  
  50. }
  51.  
  52. #declare Halo = texture {
  53.    pigment { colour rgbt 1 }
  54.    halo {
  55.       emitting
  56.       spherical_mapping
  57.       linear
  58.       turbulence 1.5
  59.       colour_map {
  60.          [ 0.0 color rgbt <1, 0, 0, 1.0> ]
  61.          [ 0.5 color rgbt <1, 1, 0,-1.0> ]
  62.          [ 1.0 color rgbt <1, 0, 0, 1.0> ]
  63.  
  64.       }
  65.       frequency 2
  66.       samples 30
  67.       scale 0.5
  68.    }
  69. }
  70.  
  71. #declare Halo2 = texture {
  72.    pigment { colour rgbt 1 }
  73.    halo {
  74.       emitting
  75.       spherical_mapping
  76.       linear
  77.       turbulence 2.5
  78.       colour_map {
  79.          [ 0.0 color rgbt <0.5, 0.5, 0, 1.0> ]
  80.          [ 0.5 color rgbt <1, 0, 0,-0.5> ]
  81.          [ 1.0 color rgbt <0.5, 0.5, 0, 1.0> ]
  82.  
  83.       }
  84.       frequency 2
  85.       samples 25
  86.       scale 0.5
  87.    }
  88. }
  89. #declare White_Marble1 = texture {
  90.    pigment {
  91.      marble
  92.      color_map {
  93.        [ 0.000  color rgb<0.900, 0.900, 0.900> ]
  94.        [ 0.800  color rgb<0.500, 0.500, 0.500> ]
  95.        [ 1.000  color rgb<0.200, 0.200, 0.200> ]
  96.      }
  97.      turbulence 1.000
  98.    }
  99.    diffuse 0.8
  100.    ambient 0.8
  101.    scale 0.1
  102.    phong 0.7
  103.    phong_size 30.000
  104. }
  105.